From: Richard M. Stallman Date: Fri, 30 May 1997 19:21:06 +0000 (+0000) Subject: (substitute-key-definition): Check vectorp, not arrayp. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~81029 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=916cc49f93a71ecc84f90e58fbe07ed96d55e566;p=emacs.git (substitute-key-definition): Check vectorp, not arrayp. --- diff --git a/lisp/subr.el b/lisp/subr.el index 0b87112c9cd..ecc64fcb450 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -145,7 +145,7 @@ in KEYMAP as NEWDEF those chars which are defined as OLDDEF in OLDMAP." (substitute-key-definition olddef newdef keymap inner-def prefix1))))) - (if (arrayp (car scan)) + (if (vectorp (car scan)) (let* ((array (car scan)) (len (length array)) (i 0))